home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 12 / Amiga Plus Sonderheft Amiga 12.iso / rexx / createexamples.rexx < prev    next >
OS/2 REXX Batch file  |  1997-07-31  |  1KB  |  43 lines

  1. /*
  2. ------------------------------------------------------------
  3.  createExamples.rexx
  4.  
  5.  This script generates all example Pictures and Transitions
  6.  
  7.  Copyright ©1997 WK-Artworks, Infect
  8. ------------------------------------------------------------
  9. */
  10.  
  11. if ~show('P','Wildfire') then do
  12.  say " Error: The Wildfire-program must be started before executing this script."
  13.  exit
  14. end
  15.  
  16. address 'Wildfire'
  17. options results
  18.  
  19. m_request "Do you want to create the example Pictures? This will take a while."
  20. tt=result
  21. if tt=0 then do
  22.  address command 'execute wf:system/createPictures'
  23. end
  24.  
  25. m_request "Do you want to create the Thumbnails for the Processor? This will take a while."
  26. tt1=result
  27. if tt1=0 then do
  28.  address command 'execute wf:system/createNails'
  29. end
  30.  
  31. m_request "Do you want to create the PowerPlugs-Examples? You need a PowerPlugs! registration!."
  32. tt2=result
  33. if tt2=0 then do
  34.  address command 'execute wf:system/createPicturesPP'
  35. end
  36.  
  37. m_request "Do you want to create the Transition-Filmstrips? This will take some HOURS on slow Amigas !!!"
  38. tt3=result
  39. if tt3=0 then do
  40.  M_OPENTMAKER
  41.  TM_CREATEEXAMPLES
  42. end
  43.